home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_c / cuj0696.zip / DWYER.ZIP / QFLOAT / CALLS.TXT < prev    next >
Text File  |  1996-03-18  |  470b  |  10 lines

  1.  *    qexp( x, y )        y = exp( x )
  2.  *    qfloor( x, y )        y = largest integer not greater than x
  3.  *      qlog( x, y )        y = log( x ) [natural logarithm]
  4.  *    qpow( x, y, z )         z = x^y [x raised to the y power]
  5.  *    qrand( q )              q = pseudorandom number in [1,2)
  6.  *    qremain( a, b, c )    c = remainder after dividing b by a.
  7.  *    qround( x, y )        y = nearest integer to x
  8.  *    qsqrt( x, y )           y = sqrt( x )
  9.  *    qtanh( x, y )        y = tanh( x ) [hyperbolic tangent]
  10.